home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / solaris8_108528.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  61 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(13295);
  10.  script_version ("$Revision: 1.10 $");
  11.  script_bugtraq_id(10202, 8054, 8079, 8250, 8314, 8831, 8929, 9477, 9962);
  12.  name["english"] = "Solaris 8 (sparc) : 108528-29";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is missing Sun Security Patch number 108528-29
  18. ( kernel update  and Apache patch).
  19.  
  20. You should install this patch for your system to be up-to-date.
  21.  
  22. Solution : http://sunsolve.sun.com/search/document.do?assetkey=1-21-108528-29-1
  23. Risk factor : High";
  24.  
  25.  
  26.  script_description(english:desc["english"]);
  27.  
  28.  summary["english"] = "Check for patch 108528-29"; 
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_GATHER_INFO);
  32.  
  33.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  34.  family["english"] = "Solaris Local Security Checks";
  35.  script_family(english:family["english"]);
  36.  
  37.  script_dependencies("ssh_get_info.nasl");
  38.  script_require_keys("Host/Solaris/showrev");
  39.  exit(0);
  40. }
  41.  
  42.  
  43.  
  44. include("solaris.inc");
  45.  
  46. e =  solaris_check_patch(release:"5.8", arch:"sparc", patch:"108528-29", obsoleted_by:"", package:"FJSVhea FJSVmdb FJSVmdbx FJSVpiclu FJSVvplr.us FJSVvplu.us SUNWapchS SUNWapchd SUNWapchr SUNWapchu SUNWarc SUNWarcx SUNWcar.d SUNWcar.m SUNWcar.u SUNWcar.us SUNWcarx.u SUNWcarx.us SUNWcpc.u SUNWcpc.us SUNWcpcx.u SUNWcpcx.us SUNWcpr.m SUNWcpr.u SUNWcpr.us SUNWcprx.u SUNWcprx.us SUNWcsl SUNWcslx SUNWcsr SUNWcstl SUNWcstlx SUNWcsu SUNWcsxu SUNWdrr.u SUNWdrr.us SUNWdrrx.u SUNWdrrx.us SUNWefcx.u SUNWfruid SUNWfruip.u SUNWfruix SUNWhea SUNWidn.u SUNWidnx.u SUNWkvm.u SUNWkvm.us SUNWkvmx.u SUNWkvmx.us SUNWmdb SUNWmdbx SUNWncar SUNWncarx SUNWncau SUNWncaux SUNWpiclh SUNWpiclu SUNWpiclx SUNWpmr SUNWpmu SUNWpmux SUNWscpu SUNWsrh SUNWtnfc SUNWtnfcx SUNWusx.u SUNWwrsdx.u SUNWwrsmx.u SUNWwrsux.u");
  47.  
  48. if ( e < 0 ) security_hole(0);
  49. else if ( e > 0 )
  50. {
  51.     set_kb_item(name:"BID-10202", value:TRUE);
  52.     set_kb_item(name:"BID-8054", value:TRUE);
  53.     set_kb_item(name:"BID-8079", value:TRUE);
  54.     set_kb_item(name:"BID-8250", value:TRUE);
  55.     set_kb_item(name:"BID-8314", value:TRUE);
  56.     set_kb_item(name:"BID-8831", value:TRUE);
  57.     set_kb_item(name:"BID-8929", value:TRUE);
  58.     set_kb_item(name:"BID-9477", value:TRUE);
  59.     set_kb_item(name:"BID-9962", value:TRUE);
  60. }
  61.